UNPKG

@devx-commerce/plugin-product-reviews

Version:
12 lines (11 loc) 429 B
import { z } from "zod"; import { MiddlewareRoute } from "@medusajs/framework"; export declare const createProductReviewResponseDTO: z.ZodObject<{ content: z.ZodString; }, "strip", z.ZodTypeAny, { content: string; }, { content: string; }>; export type CreateProductReviewResponseDTO = z.infer<typeof createProductReviewResponseDTO>; export declare const adminProductReviewResponseRouteMiddlewares: MiddlewareRoute[];